home *** CD-ROM | disk | FTP | other *** search
/ Programmer Power Tools / Programmer Power Tools.iso / progjrn / pj_7_2.arc / WINDEV1.ARC / SMLTPL.H < prev    next >
Text File  |  1988-12-04  |  729b  |  28 lines

  1. /*
  2.  * Header file for the small memory model template
  3.  *
  4.  * Written by Bill Hall
  5.  * 3665  Benton Street, #66
  6.  * Santa Clara, CA 95051
  7.  *
  8.  */
  9.  
  10. /* This trick insures that globals are declared in only one place */
  11. #if !defined(EXTERN)
  12. #define EXTERN extern
  13. #endif
  14.  
  15. /* Resource string constants */
  16. #define IDS_APPNAME    100
  17. #define IDS_ICON    101
  18. #define IDS_TITLE    102
  19.  
  20. /* Global variables */
  21. EXTERN HWND hWndMain;        /* main window handle */
  22. EXTERN char szAppName[10];    /* name of the application */
  23. EXTERN char szIcon[5];        /* icon string */
  24.  
  25. /* Declarations which need to be known in all C source files */
  26. LONG FAR PASCAL MainWndProc(HWND,unsigned,WORD,LONG);
  27. BOOL FAR InitProgram(HANDLE, HANDLE, LPSTR, int);
  28.